home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 4_10.lha / 4_10 / 4_10a2.c < prev    next >
Text File  |  1993-08-08  |  262b  |  11 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. oid delarray(double **array, int rows, int cols)
  6.  
  7.    for (int i = 0; i < cols; i++)
  8. delete array[i];
  9.    delete array;
  10.  
  11.